home *** CD-ROM | disk | FTP | other *** search
/ BlastDOS / [DOS_Application]_BIT_Software_-_BitCom_3.58c_-_Distribution_Disks.zip / README.DOC < prev    next >
Text File  |  1990-08-15  |  8KB  |  174 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.             June 1, 1990
  8.  
  9.             BitCom Release Notice Version 3.58C
  10.  
  11.             Version 3.58C includes the following changes, and fixes for
  12.             some previous bugs.
  13.  
  14.             1.   Additional file transfer protocols.
  15.  
  16.                  This version supports YMODEM-G, YMODEM-G Batch and
  17.                  Compuserv-B protocol.
  18.  
  19.             2.   New Options Menu.
  20.  
  21.                  While you are  communicating (on-line), you can press
  22.                  F2 to get the Options Menu.  The menu has been enhanced
  23.                  so that you can use the down or up arrow keys and press
  24.                  [Enter] to select an option.  Or, you can still use the
  25.                  old way of pressing a number to select an option.
  26.  
  27.             3.   MNP 5 support.
  28.  
  29.                  This version has 3 additional fields on the Parameters Menu.
  30.                  They are: "MNP", "FlwCntl" and "AutoSpd".
  31.  
  32.                  If "MNP" is set to Yes, BitCom will use the MNP Dial
  33.                  Prefix to dial.  The MNP Dial Prefix is a new field on the
  34.                  Configuration Menu. If "No", the regular dialing prefix will
  35.                  be used. If the modem number you are calling is an MNP modem,
  36.                  set the MNP option to Yes. If you do not have an MNP modem
  37.                  or the number you are calling do not have an MNP modem,
  38.                  set it to No.
  39.  
  40.                  To support the slash character used in MNP commands, BitCom
  41.                  now lets you put 2 slashes to indicate that it is literally
  42.                  a slash. One slash means that what follows is a number
  43.                  representing a time delay.
  44.  
  45.                  The "FlwCntl" tells BitCom which flow control method should
  46.                  be used. The choices are "None", " XON/XOFF" or "CTS/RTS".
  47.                  If "None", no flow control is used. "XON/OFF" is used
  48.                  in earlier version of BitCom and should be used if you
  49.                  do not have an MNP5 modem. If you have an MNP5 modem, you
  50.                  should set flow control to "CTS/RTS".
  51.  
  52.                  If "AutoSpd" is set to Yes, BitCom will change the baud rate
  53.                  to match the speed of the  answering modem. If "NO",
  54.                  BitCom will not change the speed if the connect message
  55.                  returns a different speed.
  56.  
  57.             4.   Terminal Emulation enhancements.
  58.  
  59.                  Version 3.58 also includes enhanced VT100A and WYSE
  60.                  emulation files.  Previously, VT100 emulation had
  61.                  problems with DECMail and the numeric keys not always
  62.                  working correctly.
  63.  
  64.                  The screen display for all terminal emulators has been
  65.                  sped up as well.  You will notice a significant
  66.                  improvement in displaying ANSI color/graphics screens.
  67.  
  68.                  The WYSE60 emulation file invokes the action file
  69.                  "FUNKEY.ACT."  This file contains the command "STRSEQ",
  70.                  which gets the function key assignments.  Make sure
  71.                  that this file exists in your current directory when
  72.                  using Wyse 60 emulation.  This is necessary when using
  73.                  the Wyse 60 emulation.
  74.  
  75.             5.   Script language changes.
  76.  
  77.                  a)   The KERRECV, KERSEND, and SENDFILE commands will
  78.                       now return a -1 if they were not successful, and a
  79.                       0 if they were successful.  This is useful to
  80.                       check the results of file transfers.
  81.  
  82.                  b)   ABORT - This command has been added.  It will stop
  83.                       all processing, and exit BitCom to DOS.  It will
  84.                       leave the line connected, allowing you to use
  85.                       other programs that talk to the modem.  This is
  86.                       helpful if you have another program, such as a
  87.                       database that you use to communicate after you are
  88.                       connected, and you are only using BitCom to make
  89.                       the connection.
  90.  
  91.                  c)   CLOCK - This command will turn the connect clock
  92.                       display on and off.  CLOCK(0) will turn the clock
  93.                       display off, and CLOCK(1) will turn the clock
  94.                       display on.
  95.  
  96.                  d)   CURSIZE - This command will change the size of the
  97.                       cursor.  The syntax is:
  98.  
  99.                            CURSIZE(start_line,end_line)
  100.  
  101.                       A cursor is made up of scan lines from 1 to 10,
  102.                       depending upon the graphics card used.  Normally,
  103.                       Hercules and compatible cards have scan lines from
  104.                       1 to 13.  CGA cards have from 1 to 7, and EGA
  105.                       cards have from 1 to 8.  The start_line argument
  106.                       is the top scan line of the cursor.  The end_line
  107.                       argument is the last scan line of the cursor.  If
  108.                       the start_line argument is greater than the
  109.                       end_line argument, the cursor will be turned off,
  110.                       and not visible on the display.
  111.  
  112.                       For example, the following are various size
  113.                       cursors that can be used with an EGA monitor.
  114.  
  115.                       CURSIZE(0,8)   {full size cursor}
  116.                       CURSIZE(4,8)   {half-square cursor}
  117.                       CURSIZE(7,8)   {normal cursor}
  118.                       CURSIZE(9,9)   {turn off cursor}
  119.  
  120.                  e)   HELPLINE - This function is used to replace the
  121.                       default help messages that appear on the lower
  122.                       left corner of your screen during communications
  123.                       with your own help messages.  The default messages
  124.                       are:
  125.  
  126.                       HELP      F1        OPTIONS   F2
  127.  
  128.                       The syntax for this command is:
  129.  
  130.                       HELPLINE("msg1 KEY1;...msgx KEYX", APN_FLAG)
  131.  
  132.                       The "message" argument is your own message that
  133.                       will apply to the key specified in the "key"
  134.                       argument.  Note that the message argument must not
  135.                       contain any spaces.
  136.  
  137.                       If APN_FLAG is 1 then the new message in the message
  138.                       argument will be appended to the old message.
  139.  
  140.                       If APN_FLAG is 0 then the new message will replace
  141.                       the old message.
  142.  
  143.                       For example, the following command will ask BitCom
  144.                       to replace the standard help line with the new help
  145.                       line in the message area.
  146.  
  147.                       HELPLINE("HELP F1;QUIT F2", 0)
  148.  
  149.  
  150.  
  151.             6.   We have now released BitCom Deluxe, Version 4.0.  This
  152.                  is a retail package only, and is not bundled with
  153.                  modems.  In this version we have added a remote access
  154.                  feature, allowing you to run a program from a remote
  155.                  PC, as if you were at the host system.  We have also
  156.                  added data compression and error checking, when BitCom
  157.                  Deluxe is used on both computers.  In addition, we have
  158.                  added a number of script and action file commands.  To
  159.                  upgrade to this version, send your serial number from
  160.                  the program diskette, along with $39.00 plus $3.00 for
  161.                  shipping and handling.  If you are within California,
  162.                  add 7% sales tax.  Send your order to:
  163.  
  164.                       BIT Software, Inc.
  165.                       830 Hillview Court, Suite 160
  166.                       Milpitas, CA  95035
  167.  
  168.  
  169.  
  170.             Thank you for your continued support.
  171.  
  172.             BIT Software, Inc.
  173.  
  174.